- Outlook Meetings Scheduler
Outlook Meetings Scheduler
What is Outlook Meetings Scheduler?
Outlook Meetings Scheduler is an MCP server that allows users to create calendar events in Microsoft Outlook using the Microsoft Graph API, facilitating seamless scheduling and management of meetings.
How to use Outlook Meetings Scheduler?
To use the Outlook Meetings Scheduler, you can either run it locally using Node.js or Docker, or integrate it with other MCP servers like GitHub to enhance your workflow. You can schedule meetings by providing details such as subject, attendees, and time.
Key features of Outlook Meetings Scheduler?
- Create calendar events with or without attendees.
- Find email addresses of attendees by their names.
- Integrate with GitHub for enhanced project management.
- List, update, and delete calendar events.
Use cases of Outlook Meetings Scheduler?
- Scheduling team meetings with multiple attendees.
- Creating calendar reminders for project deadlines.
- Integrating with GitHub to schedule reviews based on issues or pull requests.
FAQ from Outlook Meetings Scheduler?
- Can I schedule meetings with multiple attendees?
Yes! You can create events with multiple attendees by specifying their email addresses.
- Is there a demo available?
Yes! A demo is available in the project repository to showcase its functionalities.
- How do I find a colleague's email address?
You can use the
find-persontool to search for a colleague's email by their name.
Server Config
{
"mcpServers": {
"outlook-meetings-scheduler": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-e",
"CLIENT_ID",
"-e",
"CLIENT_SECRET",
"-e",
"TENANT_ID",
"-e",
"USER_EMAIL",
"mcp/outlook-meetings-scheduler"
],
"env": {
"CLIENT_ID": "<YOUR_CLIENT_ID>",
"CLIENT_SECRET": "<YOUR_CLIENT_SECRET>",
"TENANT_ID": "<YOUR_TENANT_ID>",
"USER_EMAIL": "<YOUR_EMAIL>"
}
}
}
}